home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / win9591a / w5.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1999-07-06  |  1.5 KB  |  55 lines

  1. VERSION 5.00
  2. Begin VB.Form w5 
  3.    BorderStyle     =   5  'Sizable ToolWindow
  4.    Caption         =   "BOARD"
  5.    ClientHeight    =   675
  6.    ClientLeft      =   60
  7.    ClientTop       =   1065
  8.    ClientWidth     =   11880
  9.    Icon            =   "w5.frx":0000
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    NegotiateMenus  =   0   'False
  14.    ScaleHeight     =   675
  15.    ScaleWidth      =   11880
  16.    ShowInTaskbar   =   0   'False
  17.    Begin VB.Timer Timer1 
  18.       Enabled         =   0   'False
  19.       Interval        =   1000
  20.       Left            =   -600
  21.       Top             =   3720
  22.    End
  23.    Begin VB.CommandButton Command1 
  24.       Caption         =   "Exit"
  25.       Height          =   255
  26.       Left            =   4080
  27.       TabIndex        =   0
  28.       Top             =   120
  29.       Width           =   2295
  30.    End
  31. Attribute VB_Name = "w5"
  32. Attribute VB_GlobalNameSpace = False
  33. Attribute VB_Creatable = False
  34. Attribute VB_PredeclaredId = True
  35. Attribute VB_Exposed = False
  36. Public AppBar As New TAppBar
  37. Sub l()
  38. With AppBar
  39. .AutoHide = True ' auto hide is true..board will hide like win95/98 bar
  40. .Edge = abeTop   ' where to put board
  41. End With
  42. End Sub
  43. Private Sub Command1_Click()
  44. Timer1.Enabled = True
  45. AppBar.Detach
  46. End Sub
  47. Private Sub Form_Load()
  48. AppBar.Extends Me
  49. End Sub
  50. Private Sub Form_Unload(Cancel As Integer)
  51. AppBar.Detach
  52. End Sub
  53. Private Sub Timer1_Timer()
  54. End Sub
  55.